e6e22dc26892bde5dfd6a7dca1081358cd95d0f2,bundles/wps/wps-client/src/main/java/org/orbisgis/wpsclient/impl/dataui/JDBCTableFieldUI.java,JDBCTableFieldUI,populateWithFields,#JDBCTableField#Map#,471
Before Change
if(fieldNameList != null && !fieldNameList.isEmpty()){
for (String fieldName : fieldNameList) {
if(jdbcTableField.getExcludedNameList() == null ||
(!jdbcTableField.getExcludedNameList().contains(fieldName.toLowerCase())
&& !jdbcTableField.getExcludedNameList().contains(fieldName.toUpperCase()))){
//Retrieve the table information
Map<String, Object> informationMap =
wpsClient.getFieldInformation(tableName, fieldName);
After Change
for (String fieldName : fieldNameList) {
boolean isNameExcluded = false;
if(jdbcTableField.getExcludedNameList() != null){
for(String excludedName : jdbcTableField.getExcludedNameList()){
if(excludedName.toLowerCase().equals(fieldName.toLowerCase())){
isNameExcluded = true;
}
}